<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs"
Inherits="YourNamespace.Default" %>
<%@ Register Src="~/FooterControl.ascx" TagPrefix="uc" TagName="FooterControl" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Demo Page with User Control</title>
<style>
body { font-family: Arial, sans-serif; }
.content { margin: 20px; }
</style>
</head>
<body>
<form id="form1" runat="server">
<div class="content">
<h2>Welcome to Our Website</h2>
<p>This is a demo page to showcase the use of a User Control.</p>
</div>
<uc:FooterControl ID="Footer1" runat="server" />
</form>
</body>
</html>